home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'PSP 7 Preset Converter',
- 'Copyright': '',
- 'Description': 'Large drybrush BrushStrokes preset',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_BrushStrokes():
- return {
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Opacity': 100,
- 'Width': 15,
- 'Length': 15,
- 'Angle': 309,
- 'Color': (0, 0, 0),
- 'Density': 100,
- 'Bristles': 175,
- 'Softness': 1,
- }
-
- def Do(Environment):
- App.Do(Environment, 'BrushStrokes', Preset_BrushStrokes())
-